summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemCookedFish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemCookedFish.h')
-rw-r--r--src/Items/ItemCookedFish.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Items/ItemCookedFish.h b/src/Items/ItemCookedFish.h
index 8a819c6f6..d0edc2d6a 100644
--- a/src/Items/ItemCookedFish.h
+++ b/src/Items/ItemCookedFish.h
@@ -7,14 +7,15 @@
-class cItemCookedFishHandler :
+class cItemCookedFishHandler:
public cItemFoodHandler
{
- typedef cItemFoodHandler super;
+ using Super = cItemFoodHandler;
public:
- cItemCookedFishHandler()
- : super(E_ITEM_COOKED_FISH, FoodInfo(0, 0))
+
+ cItemCookedFishHandler():
+ Super(E_ITEM_COOKED_FISH, FoodInfo(0, 0))
{
}